home *** CD-ROM | disk | FTP | other *** search
- <HTML>
- <HEAD>
- <LINK REL="stylesheet" TYPE="text/css" HREF="%1css/default.css">
- </HEAD>
-
- <script language="Javascript">
- //LOCALIZATION STRINGS
- var _strPromptTitle = "Please enter a title.";
-
- var _strTitleAlert = "Please limit the title to 100 characters.";
- var _strDescAlert = "Please limit the description to 1024 characters.";
-
- </script>
-
- <SCRIPT>
- function doSubmitForm()
- {
- if (document.forms.shortform.title.value == "")
- {
- alert(_strPromptTitle);
- return;
- }
-
- var strTitle = document.forms.shortform.title.value;
- var strDesc = document.forms.shortform.desc.value;
- if (strTitle.length > 100)
- {
- alert(_strTitleAlert);
- return;
- }
- if (strDesc.length > 1024)
- {
- alert(_strDescAlert);
- return;
- }
-
- document.forms.shortform.submit();
- }
-
- function relocate(url)
- {
- window.parent.parent.location = url;
- }
- </SCRIPT>
-
- <BODY>
- <form name="shortform" method="post" ACTION="%2" target="_parent">
-
- <table cellpadding=2 cellspacing=2>
-
- <tr><td class="list">Title:</td><td class="list"><INPUT TYPE="TEXT" SIZE="40" NAME="title" VALUE="%3"></TD></tr>
-
- <TR>
- <TD class="list" VALIGN="TOP">Description:</TD><TD class="list" COLSPAN="2"><TEXTAREA WRAP="virtual" NAME="desc" ROWS="7" COLS="50">%4</TEXTAREA></TD>
- </TR>
-
- <tr><td class="list">Folder Path:</td><td class="list">%5</td></tr>
-
- <tr><td class="list">Created:</td><td class="list">%6</td></tr>
-
- <tr>
- <td colspan=2 align=right>
- <table cellpadding=0 border=0>
- <tr>
- <td class="clsButton" align=middle nowrap>
- <div class="clsButton"> <A HREF="javascript:doSubmitForm()">Update</A> </div>
- </td>
- </tr>
- </table>
- </td>
- <td>
- <table cellpadding=0 border=0>
- <tr>
- <td class="clsButton" align=middle nowrap>
- <div class="clsButton"><a href="javascript:document.shortform.reset()">Reset</a></div>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
-
- </form>
- </BODY>
- </HTML>
-